github.com/andybalholm/brotli/matchfinder.M4.score (method)

9 uses

	github.com/andybalholm/brotli/matchfinder (current package)
		m4.go#L59: func (q *M4) score(m absoluteMatch) int {
		m4.go#L120: 				if matches[1].End-matches[1].Start >= q.MinLength && q.score(matches[1]) > 0 {
		m4.go#L161: 			if m.End-m.Start > q.MinLength && q.score(m) > 0 {
		m4.go#L177: 				if m.End-m.Start > q.MinLength && q.score(m) > q.score(currentMatch) {
		m4.go#L197: 		if q.score(currentMatch) <= q.score(matches[0])+overlapPenalty {
		m4.go#L255: 			if matches[2].End-matches[2].Start >= q.MinLength && q.score(matches[2]) > 0 {
		m4.go#L267: 		if matches[1].End-matches[1].Start >= q.MinLength && q.score(matches[1]) > 0 {